*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.navBar{
    list-style-type: none;
    overflow: hidden;
    background-color: var(--bg-color);
    position: sticky;
    display: flex;
    align-items: center;
    flex-direction: column; 
}
.logo{
  margin-left: 8%;
  padding: 5px;
}
.logo img{
  width: 5em;
}
.navBar ul{
    margin-left: 0;
}
.navBar li{
    float: left;
    display: inline;
}
.navBar a{
    color: var(--text-color);
    text-align: center;
    padding: 0 10px;
    margin: 0 20px;
    text-decoration: none;
}
.navBar a:hover{
    color: var(--main-color);
}
.navBtn{ 
    color: var(--text-color);
}
.contactUs{
    position: relative;
    width: 100%;
    padding: 30px 160px;
}
.contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}
.contactUs .title h2{
    color: #1a1a1a;
    font-weight: 500;
}
.Form{
    grid-area: Form;
}
.Info{
    grid-area: Info;
}
.Map{
    grid-area: Map;
}
.contact{
    padding: 40px;
    background: #1a1a1a;
    border-radius: 5px;
}
.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: "Form Info" "Form Map";
    grid-gap: 20px;
    margin-top: 20px;
}
.contact h3{
    color: #e5e5e5;
    font-size: 1.4em;
    font-weight: 500;
    margin-bottom: 10px;
}
/* form */
.formBox{
    position: relative;
    width: 100%;
}
.row50{
    display: flex;
    gap: 20px;
}
.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
.formBox .row100 .inputBox{
    width: 100%;
}
.inputBox span{
    color: #e5e5e5;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}
.inputBox input{
    padding: 10px;
    font-size: 1em;
    outline: none;
    border: none;
    border-radius: 5px;
}
.inputBox textarea{
    padding: 10px;
    font-size: 1em;
    outline: none;
    border: none;
    border-radius: 5px;
    resize: none;
    min-height: 220px;
    margin-bottom: 15px;
}
.inputBox input[type="submit"]{
    background: #e5e5e5;
    color: #1a1a1a;
    font-size: 1.1em;
    font-weight: 500;
    max-width: 150px;
    border: none;
    cursor: pointer;
}
.inputBox input[type="submit"]:hover {
    color: #e5e5e5;
 background: linear-gradient(90deg, rgb(169, 184, 199) 0%, rgb(45, 60, 63) 100%);
}

.inputBox input[type="submit"]:active {
 transform: translate(0em, 0.2em);
}
/* Info */
.Info h3{
    margin-bottom: 30px;
}
.Info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.Info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #1a1a1a;
    background: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    border-radius: 50%;
    margin-right: 15px;
}
.Info .infoBox div p{
    color: #e5e5e5;
    font-size: 1.1em;
}
.Info .infoBox div a{
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1.1em;
}
.Map{
    padding: 0;
}
.Map iframe{
    width: 100%;
    height: 100%;
}
footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1f7fb;
  color: #1a1a1a;
  justify-content: space-around;
}
.footer-Logo img{
  width: 10em;
}
.dropdown{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dropdown a{
  color: #1a1a1a;
}
.dropdown a:hover{
  color: #1a1a1a94;
} 


@media (min-width: 768px) {
    .navBar {
        flex-direction: row;
    }
    .navBar ul {
        margin-left: 26%;
    }
    footer {
        flex-direction: row;
    }
}
@media (max-width:768px){
    .contactUs .title{
        font-size: 1rem;
    }
  .dropdown{
      flex-direction: row;
    }
    .footer-Logo img{
      width: 5em;
    }
}
@media (max-width:991px){
    .contactUs{
        padding: 20px;
    }
    .box{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "Form"
        "Info"
        "Map";
    }
    .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .inputBox{
        width: 100%;
    }
    .contact{
        padding: 30px;
    }
    .Map{
        min-height: 300px;
        padding: 0;
    }
}